home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
choices
/
tools.lha
/
NEWmpl
/
tokens.h
Wrap
C/C++ Source or Header
|
1991-07-25
|
1KB
|
46 lines
/******************************************************************************
*
* token.h
*
* This file defines tokens not used directly by the by the parser as
* tokens, but may be used in the nodes of the syntax tree. The parser tokens
* start at 256, these tokens may run from 100 to 255.
*
* Ed Loyot 6/12/90
*
* Copyright (c) 1990, 1991
* University of Virginia
* All Rights Reserved
*
* This software is the property of the University of Virginia.
* Permission is granted to copy and distribute this software as
* long as this notice is intact on all copies. Derived works
* must retain this notice. This software is provided `as is'
* and without any express or implied warrenties.
*
* Send problems & suggestions to:
* Ed Loyot (ecl2v@virginia.edu) or
* Andrew Grimshaw (grimshaw@cs.virginia.edu)
*
*****************************************************************************/
#ifndef TOKENS
#define TOKENS
#define UNKNOWN 0
#define LABEL 100
#define PTR 101
#define ARRAY 102
#define CUE 103
#define PARAMETER 104
#define FUNCTION 105
#define NONE 106
#define CIP 107
#define ARG_STRUCT 108
#define SIZE_FUNC 109
typedef int TOKEN;
#endif TOKENS